home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 4 / Gold Medal Software - Volume 4 (Gold Medal) (1994).iso / os2 / stplot15.arj / PLOT.HLP (.txt) < prev    next >
OS/2 Help File  |  1994-04-22  |  30KB  |  770 lines

  1.  
  2. ΓòÉΓòÉΓòÉ 1. About PLOT ΓòÉΓòÉΓòÉ
  3.  
  4. PLOT is an OS/2 Presentation Manager application which offers graphical plot 
  5. support. Graphics created by PLOT can be printed or exported to a Windows 3.x 
  6. bitmap file. This allows you to load the created graphic from a word processor 
  7. and to embed it in your documents. 
  8.  
  9. PLOT highlights 
  10.  
  11. Data file format 
  12.  
  13. Registration information 
  14.  
  15. Calling PLOT from other applications 
  16.  
  17. PLOT has been developed by:
  18.  
  19. StegSoft
  20. Durlacher Allee 38
  21. 76131 Karlsruhe
  22. West Germany
  23.  
  24. Fax: +49 721 693242
  25.  
  26.  
  27. ΓòÉΓòÉΓòÉ 1.1. Calling PLOT from other applications ΓòÉΓòÉΓòÉ
  28.  
  29. This information is intended for developers writing applications that need 
  30. graphical plot support under OS/2 version 2. 
  31.  
  32. If you are writing an OS/2 application that needs X-Y plot support, PLOT may be 
  33. very useful. You can start PLOT from your program by creating a child process 
  34. via DosExecPgm. 
  35.  
  36. If you are writing a commercial application, you can include PLOT on your 
  37. software package. In this case, registration fees have to be paid for every 
  38. distributed package. 
  39.  
  40. If you are interested in using PLOT together with your commercial software, 
  41. please contact us by writing to the following address: 
  42.  
  43. StegSoft
  44. Durlacher Allee 38
  45. 76131 Karlsruhe
  46. West Germany
  47.  
  48. Fax: +49 721 693242
  49.  
  50.  
  51. ΓòÉΓòÉΓòÉ 1.1.1. Creating a child process ΓòÉΓòÉΓòÉ
  52.  
  53. The following example code shows a way to call PLOT from an application written 
  54. in C. First of all, a file containing all your data must be created and stored 
  55. to a disk. Then a child process must be created using the DosExecPgm kernel 
  56. function. This will start PLOT and your data file will automatically be loaded. 
  57.  
  58. #define INCL_DOSPROCESS
  59. #include <os2.h>
  60.  
  61. RESULTCODES resc;
  62. CHAR szFailName[CCHMAXPATH];
  63. CHAR szCommandLine[] = "plot\0yourdata.plt\0";
  64.  
  65. /*
  66.  * The following function writes your data to a file
  67.  * named "yourdata.plt". It is not included on this
  68.  * package, but you can obtain it by contacting us.
  69.  */
  70. SavePlotData("yourdata.plt", xdata, ydata, flags);
  71.  
  72. DosExecPgm(szFailName,          /* Object-name buffer  */
  73.            sizeof(szFailName),  /* Length of buffer    */
  74.            EXEC_ASYNC,          /* Async flag          */
  75.            szCommandLine,       /* Argument string     */
  76.            (PSZ) NULL,          /* Environment string  */
  77.            &resc,               /* Address of result   */
  78.            "plot.exe");         /* Name of application */
  79.  
  80.  
  81. ΓòÉΓòÉΓòÉ 1.2. PLOT highlights ΓòÉΓòÉΓòÉ
  82.  
  83. Version 1.5
  84.  
  85. Γûá Fully 32 bit architecture 
  86. Γûá Export a graphic to a Windows 3.x bitmap file 
  87. Γûá Capability of choosing line types, colors and markers 
  88. Γûá Accelerator keys providing quick access to commands 
  89. Γûá Enhanced graphics printing support 
  90. Γûá Graph data can be easily created using a text editor 
  91. Γûá Save settings command 
  92. Γûá Online help for every command by pressing F1 
  93. Γûá Easy to use 
  94.  
  95.  
  96. ΓòÉΓòÉΓòÉ 2. File Menu ΓòÉΓòÉΓòÉ
  97.  
  98. The File menu contains commands that you use to open data files, print and 
  99. export graphics. In addition, it also contains the command that you use to exit 
  100. the application. 
  101.  
  102. The following commands appear in the File menu: 
  103.  
  104. New...              Opens an existing data file for creating a new graphic. 
  105.  
  106. Open...             Opens an existing data file for embedding in the current 
  107.                     graphic. 
  108.  
  109. Export...           Saves the current graphic to a Windows 3.x bitmap file. 
  110.  
  111. Print...            Prints the current graphic on the default printer. 
  112.  
  113. Exit                Quits this application. 
  114.  
  115.  
  116. ΓòÉΓòÉΓòÉ 3. New ΓòÉΓòÉΓòÉ
  117.  
  118. You can open a data file that exists on any drive or in any directory by using 
  119. the New command. The current graphic will be lost. To create a new graphic and 
  120. load a data file, do the following: 
  121.  
  122. o Select the File menu and choose the New command. 
  123.  
  124. A dialog box appears, showing you a list of files in the current directory. 
  125.  
  126.  
  127. ΓòÉΓòÉΓòÉ 4. Open ΓòÉΓòÉΓòÉ
  128.  
  129. You can open a data file that exists on any drive or in any directory by using 
  130. the Open command. The loaded graph will be represented in your current graphic. 
  131. To load a data file to be shown in your current graphic, do the following: 
  132.  
  133. o Select the File menu and choose the Open command. 
  134.  
  135. A dialog box appears, showing you a list of files in the current directory. 
  136.  
  137.  
  138. ΓòÉΓòÉΓòÉ 5. Export... ΓòÉΓòÉΓòÉ
  139.  
  140. You use the Export... command to save your graphic to a bitmap file. 
  141.  
  142. Follow these steps to create a bitmap file: 
  143.  
  144.  1. Select the File menu and choose the Export... command. A dialog box 
  145.     appears, prompting you for the size of your bitmap. 
  146.  
  147.  2. Select the desired size of your graphic and press the OK button. A dialog 
  148.     box appears, prompting you for the file name. 
  149.  
  150.  3. Enter a file name and press the OK button again. 
  151.  
  152. Your graph will be saved to a Windows 3.x bitmap file. 
  153.  
  154. Note:  If you are using an unregistered version, you will get a motivation 
  155. message on your bitmap prompting you to get your registered version. This 
  156. message will disappear after registration. You can delete this message using a 
  157. paint program. 
  158.  
  159.  
  160. ΓòÉΓòÉΓòÉ 6. Print ΓòÉΓòÉΓòÉ
  161.  
  162. You use the Print command to print your graphic on the default printer. 
  163.  
  164. Follow these steps to print your graphic: 
  165.  
  166.  1. Select the File menu and choose the Print command. A dialog box appears, 
  167.     prompting you for the size of your graphic print. 
  168.  
  169.  2. Select the desired size of your graphic and press the OK button. A dialog 
  170.     box appears, prompting you for the job properties. 
  171.  
  172.  3. Select the job properties and press the OK button again. 
  173.  
  174. Your graph will be printed on your default printer. 
  175.  
  176. Note:  If you want to change your default printer, refer to a printer object on 
  177. your desktop. Open its menu and select your default printer by using the Set 
  178. default menu. 
  179.  
  180. Note:  If you are using an unregistered version, you will get a motivation 
  181. message on your print prompting you to get your registered version. This 
  182. message will disappear after registration. 
  183.  
  184.  
  185. ΓòÉΓòÉΓòÉ 7. Exit ΓòÉΓòÉΓòÉ
  186.  
  187. You quit this application by using the Exit command. To quit this application, 
  188. do the following: 
  189.  
  190.  1. Select the File menu and choose the Exit command. 
  191.  
  192.  
  193. ΓòÉΓòÉΓòÉ 8. Options Menu ΓòÉΓòÉΓòÉ
  194.  
  195. The Options menu contains commands that you use to modify your graphic, load a 
  196. text editor or save the current settings. 
  197.  
  198. The following commands appear in the Options menu: 
  199.  
  200. Graphic...          Allows you to set new axis limits, to document the axis and 
  201.                     to select and unselect other drawing options. 
  202.  
  203. Set Font...         Allows you to select the desired font type and size. 
  204.  
  205. Graph...            Allows you to modify the line type when interpolating 
  206.                     between points, to put markers at each point and to change 
  207.                     the color of a graph. 
  208.  
  209. Edit Data File      Starts a text editor that allows you to create or modify a 
  210.                     data file. 
  211.  
  212. Save options        Use this command to save the current settings. 
  213.  
  214.  
  215. ΓòÉΓòÉΓòÉ 9. Graphic ΓòÉΓòÉΓòÉ
  216.  
  217. You can use the Graphic command to select the displaying options of your 
  218. graphic. 
  219.  
  220. To change the displaying options of your graphic, do the following: 
  221.  
  222. o Select the Options menu and choose the Graphic command. A dialog box will 
  223.   appear prompting you for the graphic options. 
  224.  
  225. o After selecting all the desired options, press the OK button. 
  226.  
  227. Your graphic will be immediately updated on the screen. 
  228.  
  229.  
  230. ΓòÉΓòÉΓòÉ 9.1. Graphic options ΓòÉΓòÉΓòÉ
  231.  
  232. Use this dialog box to specify the graphic drawing options. Refer to the 
  233. following list to learn how to use this dialog box: 
  234.  
  235. o Axes text 
  236. o x-Axis / y-Axis 
  237. o New axes values 
  238. o Settings 
  239. o Print parameters 
  240. o OK 
  241. o Cancel 
  242.  
  243.  
  244. ΓòÉΓòÉΓòÉ 9.1.1. Axes text ΓòÉΓòÉΓòÉ
  245.  
  246. In these entry fields you can enter the text you want to document your axes 
  247. with. 
  248.  
  249.  
  250. ΓòÉΓòÉΓòÉ 9.1.2. x-Axis / y-Axis ΓòÉΓòÉΓòÉ
  251.  
  252. This option will allow you to locate your graphic's axes either at the 
  253. left/bottom or in the coordinate's origin. 
  254.  
  255. Note:  If you have chosen the Box instead of axes option, this selection will 
  256. be ignored. 
  257.  
  258.  
  259. ΓòÉΓòÉΓòÉ 9.1.3. New axes values ΓòÉΓòÉΓòÉ
  260.  
  261. When you load a new graph, the coordinate's scope will be matched to all your 
  262. loaded graphs. However, if you want to modify the scope, you can enter new 
  263. margin values for your graphic. After this, choose the option Use new axes 
  264. values. 
  265.  
  266.  
  267. ΓòÉΓòÉΓòÉ 9.1.4. Settings ΓòÉΓòÉΓòÉ
  268.  
  269. The settings consist of the following options: 
  270.  
  271. o Draw axes. This option allows you to choose whether the coordinate axes will 
  272.   be drawn. 
  273.  
  274. o Box instead of axes. This option allows you to choose between coordinate axes 
  275.   or coordinate box. 
  276.  
  277. o Draw frame. This option allows you to draw a frame enclosing the whole 
  278.   graphic. 
  279.  
  280. o Line width thick. By selecting this option the lines will be drawn thicker. 
  281.   This option will probably not work on OS/2 version 2.1. 
  282.  
  283. o Document axes. This option allows you to choose whether the axes will be 
  284.   documented with numbers (and text). 
  285.  
  286.  
  287. ΓòÉΓòÉΓòÉ 9.1.5. Print parameters ΓòÉΓòÉΓòÉ
  288.  
  289. Use the Marker size option to select the marker size when you print a graphic. 
  290.  
  291.  
  292. ΓòÉΓòÉΓòÉ 9.1.6. OK-button ΓòÉΓòÉΓòÉ
  293.  
  294. Click on this button if you want to activate the changes made in the graphic 
  295. options dialog box. 
  296.  
  297.  
  298. ΓòÉΓòÉΓòÉ 9.1.7. Cancel-button ΓòÉΓòÉΓòÉ
  299.  
  300. Click on this button if you want to discard the changes made in the graphic 
  301. options dialog box. 
  302.  
  303.  
  304. ΓòÉΓòÉΓòÉ 10. Set Font ΓòÉΓòÉΓòÉ
  305.  
  306. You can use the Set Font command to select the font type and size used to 
  307. document your graphic. 
  308.  
  309. Note:  You will probably obtain good results when choosing the Times New Roman 
  310. font with 8pt size. 
  311.  
  312.  
  313. ΓòÉΓòÉΓòÉ 11. Graph ΓòÉΓòÉΓòÉ
  314.  
  315. You can change the drawing style of a graph by using the Graph command. 
  316.  
  317. To change the drawing style of a graph, do the following: 
  318.  
  319. o Select the Options menu and choose the Graph command. A dialog box will 
  320.   appear prompting you for the graph drawing attributes. 
  321.  
  322. o After selecting all the desired options, press the OK button. 
  323.  
  324. The modified graph will be immediately updated on the screen. 
  325.  
  326.  
  327. ΓòÉΓòÉΓòÉ 11.1. Graph options ΓòÉΓòÉΓòÉ
  328.  
  329. Use this dialog box to specify the drawing options of the currently selected 
  330. graph. Refer to the following list to learn how to use this dialog box: 
  331.  
  332. o Color 
  333. o Line type 
  334. o Marker type 
  335. o OK 
  336. o Cancel 
  337. o Save 
  338.  
  339.  
  340. ΓòÉΓòÉΓòÉ 11.1.1. Color ΓòÉΓòÉΓòÉ
  341.  
  342. Use this option to change the seleted graph's color. 
  343.  
  344.  
  345. ΓòÉΓòÉΓòÉ 11.1.2. Line type ΓòÉΓòÉΓòÉ
  346.  
  347. Use this option to choose the line type the seleted graph has to be drawn with. 
  348. If you don't want any lines, select the Invisible option. 
  349.  
  350.  
  351. ΓòÉΓòÉΓòÉ 11.1.3. Marker type ΓòÉΓòÉΓòÉ
  352.  
  353. Use this option to choose whether you want markers in the seleted graph. If you 
  354. don't want any markers, select the None option. 
  355.  
  356.  
  357. ΓòÉΓòÉΓòÉ 11.1.4. OK-button ΓòÉΓòÉΓòÉ
  358.  
  359. Click on this button if you want to activate the changes made in the graph 
  360. options dialog box. 
  361.  
  362.  
  363. ΓòÉΓòÉΓòÉ 11.1.5. Cancel-button ΓòÉΓòÉΓòÉ
  364.  
  365. Click on this button if you want to discard the changes made in the graph 
  366. options dialog box. 
  367.  
  368.  
  369. ΓòÉΓòÉΓòÉ 11.1.6. Save-button ΓòÉΓòÉΓòÉ
  370.  
  371. Click on this button if you want to activate the changes made in the graph 
  372. options dialog box. In addition, your graph file will be updated using the 
  373. graph options. 
  374.  
  375.  
  376. ΓòÉΓòÉΓòÉ 12. Edit Data File ΓòÉΓòÉΓòÉ
  377.  
  378. You can create or modify a data file by using the Edit Data File command. When 
  379. choosing the Edit Data File command, a text editor is started. After defining a 
  380. binary structuring element, the file has to be saved with the extension *.plt. 
  381.  
  382. Follow these steps to create a data file: 
  383.  
  384. o Select the Options menu and choose the Edit Data File command. 
  385.  
  386. A text editor will be started. Refer to one of the following items to learn how 
  387. to create your data file: 
  388.  
  389. o Data File Format 
  390.  
  391.  
  392. ΓòÉΓòÉΓòÉ 12.1. Data file format ΓòÉΓòÉΓòÉ
  393.  
  394. Format Description 
  395.  
  396. Each graph can be created and saved by using a text editor. A file containing 
  397. graph data should have the extention *.plt. Data files should contain one data 
  398. point per line. There are two possibilities of describing your data points. 
  399.  
  400. If both x and y values are specified (parametric data), your data file should 
  401. contain two number columns. The first one is assumed to be the x value of each 
  402. pair (x,y) and the second one represents the y value. 
  403.  
  404. However, the x value of each pair (x,y) may be omitted. In this case the 
  405. omitted value is assigned the current coordinate number. These coordinate 
  406. numbers start at 0 and are incremented for each data point read. This is useful 
  407. if you want to represent sampled values. 
  408.  
  409. In both cases you can add comments in any line beginning with ;. These lines 
  410. will be ignored. 
  411.  
  412. You can select some parameters such as the graph color, line type and marker 
  413. type by adding some commands to your data file. All commands begin with the # 
  414. character. You can use a command more than once each file, but only the last 
  415. oen will be used. 
  416.  
  417. Currently the following 3 commands are supported: 
  418.  
  419. o #COLOR 
  420. o #LINE 
  421. o #MARKER 
  422.  
  423. These two examples show you how to create both parametric and non-parametric 
  424. data files. 
  425.  
  426. Parametric file 
  427.  
  428. ; both x and y values
  429.  0     0
  430.  0.5   0.25
  431.  1     1
  432.  2     4
  433.  3     9
  434.  4    16
  435.  5    25
  436.  
  437. Non-parametric file 
  438.  
  439. ; only y values
  440.  0
  441.  1
  442.  4
  443.  9
  444. 16
  445. 25
  446.  
  447.  
  448. ΓòÉΓòÉΓòÉ 12.1.1. #COLOR command ΓòÉΓòÉΓòÉ
  449.  
  450. Use this command to select your graph's color. The following parameters are 
  451. available: 
  452.  
  453. WHITE
  454. BLACK
  455. BACKGROUND
  456. BLUE
  457. RED
  458. PINK
  459. GREEN
  460. CYAN
  461. YELLOW
  462. NEUTRAL
  463. DARK_GRAY
  464. DARK_BLUE
  465. DARK_RED
  466. DARK_PINK
  467. DARK_GREEN
  468. DARK_CYAN
  469. BROWN
  470. PALE_GRAY
  471.  
  472. Example: 
  473.  
  474. #COLOR BLUE
  475.  
  476.  
  477. ΓòÉΓòÉΓòÉ 12.1.2. #LINE command ΓòÉΓòÉΓòÉ
  478.  
  479. Use this command to select your graph's line type. The following parameters are 
  480. available: 
  481.  
  482. DOT
  483. SHORT_DASH
  484. DASH_DOT
  485. DOUBLE_DOT
  486. LONG_DASH
  487. DASH_DOUBLE_DOT
  488. SOLID
  489. INVISIBLE
  490. ALTERNATE
  491.  
  492. Example: 
  493.  
  494. #LINE LONG_DASH
  495.  
  496.  
  497. ΓòÉΓòÉΓòÉ 12.1.3. #MARKER command ΓòÉΓòÉΓòÉ
  498.  
  499. Use this command to select your graph's marker types. The following parameters 
  500. are available: 
  501.  
  502. NONE
  503. CROSS
  504. PLUS
  505. DIAMOND
  506. SQUARE
  507. 6-POINT-STAR
  508. 8-POINT-STAR
  509. SOLID_DIAMOND
  510. SOLID_SQUARE
  511. DOT
  512. CIRCLE
  513.  
  514. Example: 
  515.  
  516. #MARKER SOLID_SQUARE
  517.  
  518.  
  519. ΓòÉΓòÉΓòÉ 13. Save options ΓòÉΓòÉΓòÉ
  520.  
  521. Use Save options to store the current options. A file named PLOT.INI will be 
  522. created in your working directory. The next time you start this application 
  523. these same settings will be used. 
  524.  
  525. The following settings will be stored: 
  526.  
  527. o Window size and position, 
  528. o Bitmap size and resolution. 
  529. o Print size. 
  530. o Graphic settings. 
  531. o Font and font size. 
  532.  
  533.  
  534. ΓòÉΓòÉΓòÉ 14. Help Menu ΓòÉΓòÉΓòÉ
  535.  
  536. Refer to this menu to access the online help and to obtain information about 
  537. this product. 
  538.  
  539. The following commands appear in the Help menu: 
  540.  
  541. Help index               Use this command to access the help index. 
  542.  
  543. General help             Use this command to get a brief description of PLOT. 
  544.  
  545. Using help               Here you can learn how to use the online help. 
  546.  
  547. Registration information Displays registration data (only if you registered the 
  548.                          product). 
  549.  
  550. Product information      Displays program version and copyright. 
  551.  
  552.  
  553. ΓòÉΓòÉΓòÉ 15. Index ΓòÉΓòÉΓòÉ
  554.  
  555. Choosing this menu you can get access to the help index. 
  556.  
  557.  
  558. ΓòÉΓòÉΓòÉ 16. General help ΓòÉΓòÉΓòÉ
  559.  
  560. In this menu item you can get a brief description of PLOT. 
  561.  
  562. Note:  This screen will usually be handled by the default. 
  563.  
  564.  
  565. ΓòÉΓòÉΓòÉ 17. Using Help ΓòÉΓòÉΓòÉ
  566.  
  567. In this menu item you can learn how to use this online help. 
  568.  
  569.  
  570. ΓòÉΓòÉΓòÉ 18. Keys ΓòÉΓòÉΓòÉ
  571.  
  572. This application defines Function Keys, which you use to work with files and 
  573. display help.  For key definitions, select from the list below: 
  574.  
  575. o Standard function keys 
  576. o Accelerator keys 
  577.  
  578.  
  579. ΓòÉΓòÉΓòÉ 18.1. Standard function keys ΓòÉΓòÉΓòÉ
  580.  
  581. F1 
  582.    Displays help. 
  583.  
  584.  
  585. ΓòÉΓòÉΓòÉ 18.2. Accelerator keys ΓòÉΓòÉΓòÉ
  586.  
  587. This application defines keyboard accelerators, which are keystrokes that 
  588. generate command messages for an application. 
  589.  
  590. Using a keyboard accelerator has the same effect as choosing a menu item. While 
  591. menus provide an easy way to learn this application's command set, accelerators 
  592. provide quick access to those commands. 
  593.  
  594.  
  595. ΓòÉΓòÉΓòÉ 19. Tutorial ΓòÉΓòÉΓòÉ
  596.  
  597. This application still doesn't offer any tutorial. 
  598.  
  599.  
  600. ΓòÉΓòÉΓòÉ 20. Registration information ΓòÉΓòÉΓòÉ
  601.  
  602. If you are working with an unregistered PLOT version, you may use it for a two 
  603. weeks trial period. After this time you must register or stop using it. You can 
  604. obtain a registered PLOT version by ordering it at the following address or fax 
  605. number: 
  606.  
  607. StegSoft
  608. Durlacher Allee 38
  609. 76131 Karlsruhe
  610. West Germany
  611.  
  612. Fax: +49 721 693242
  613.  
  614. As soon as you order PLOT, you will receive the latest version for US $20 
  615. (Germany DM 30). Please don't forget to tell us which diskette format you 
  616. prefer when you order your registered version. 
  617.  
  618. Please add US $8 for shipping and handling if you don't live in Europe. If you 
  619. live in Europe, add US $5 (Germany DM 5). 
  620.  
  621. Please use the order form included on this online help. To print an order form, 
  622. do the following: 
  623.  
  624.  1. Select one of the following items and double-click. 
  625.  2. Select Print. 
  626.  3. Make sure that This section is selected. 
  627.  4. Select Print. 
  628.  
  629. o Order form (English) 
  630.  
  631. o Bestellungsformular (Deutsch) 
  632.  
  633. o Formulario de pedido (Espa╨┤ol) 
  634.  
  635.  
  636. ΓòÉΓòÉΓòÉ 20.1. StegSoft PLOT order form ΓòÉΓòÉΓòÉ
  637.  
  638.  
  639. Name    ___________________________________________________________
  640.  
  641. Address ___________________________________________________________
  642.  
  643. City    __________________________ State _________ ZIP ____________
  644.  
  645. Country ___________________________________________________________
  646.  
  647. Phone Number (optional) __________________  Circle:  home  or  work
  648.  
  649. Shipping (check one):
  650.  __  By mail, payment enclosed (add $8 U.S. if you don't live in
  651.      Europe, $5 U.S. if you live in Europe)
  652.  __  By mail, cash on delivery (charge for shipping and handling)
  653.  
  654. Choose Disk Size (check one):
  655.  __  5 1/4" disk size
  656.  __  3 1/2" disk size
  657.  
  658. Payment mode (check one):
  659.  __  Cheque drawn in U.S. dollars or german marks enclosed
  660.  __  Cash enclosed (only U.S. dollars or german marks accepted)
  661.  __  Cash on delivery
  662.  
  663. PLOT for OS/2 2.x Registration Fee ($20.00 US)              ______
  664. PLOT Update Fee from any registered version ($5.00 U.S.)    ______
  665. Shipping and Handling                                       ______
  666.  
  667. Total Enclosed                                              ______
  668.  
  669. Mail or fax to:  StegSoft
  670.                  Durlacher Allee 38
  671.                  76131 Karlsruhe
  672.                  West Germany
  673.  
  674.                  Fax: +49 721 693242
  675.  
  676.                  *** Thank you for your order! ***
  677.  
  678.  
  679. ΓòÉΓòÉΓòÉ 20.2. StegSoft PLOT Bestellungsformular ΓòÉΓòÉΓòÉ
  680.  
  681.  
  682. Name    ___________________________________________________________
  683.  
  684. Adresse ___________________________________________________________
  685.  
  686. Ort     __________________________________________ PLZ ____________
  687.  
  688. Land    ___________________________________________________________
  689.  
  690. Telefonnummer (optional) _____________________     Zuhause / Arbeit
  691.  
  692. Lieferung (W╨öhlen Sie eine Option aus):
  693.  __  Per Post, Geld liegt bei  (zzgl. DM 5,- Porto, f╨ær
  694.      Bestellungen innerhalb von Europa)
  695.  __  Per Post, gegen Nachnahme (zzgl. Porto)
  696.  
  697. W╨öhlen Sie das von Ihnen gew╨ænschte Diskettenformat:
  698.  __  5 1/4"
  699.  __  3 1/2"
  700.  
  701. Bezahlungsart:
  702.  __  Scheck in DM oder US Dollar liegt bei
  703.  __  Geld liegt bei (bitte nur DM oder US Dollar!)
  704.  __  Gegen Nachnahme
  705.  
  706. PLOT f╨ær OS/2 2.x Registrierungsgeb╨æhr (DM 30,-)            ______
  707. PLOT Update von jeder registrierten Version (DM 8,-)        ______
  708. Porto f╨ær Versand                                           ______
  709.  
  710. Gesamtbetrag                                                ______
  711.  
  712. Schicken oder faxen Sie dieses Formular an:
  713.  
  714.                  StegSoft
  715.                  Durlacher Allee 38
  716.                  76131 Karlsruhe
  717.                  Deutschland
  718.  
  719.                  Fax: +49 721 693242
  720.  
  721.                  *** Vielen Dank f╨ær Ihre Bestellung! ***
  722.  
  723.  
  724. ΓòÉΓòÉΓòÉ 20.3. StegSoft PLOT - Formulario de pedido ΓòÉΓòÉΓòÉ
  725.  
  726.  
  727. Nombre    _________________________________________________________
  728.  
  729. Direcci╨▓n _________________________________________________________
  730.  
  731. Poblaci╨▓n _______________________ Provincia ______ C/P ____________
  732.  
  733. Pa╨▒s      _________________________________________________________
  734.  
  735. Tel╨Æfono (opcional) ______________________ Indicar:  casa o trabajo
  736.  
  737. Env╨▒o (elija una opci╨▓n):
  738.  __  Por correo, pago adjunto (a╨┤ada $5 U.S. si vive en Europa o
  739.      $8 U.S. si vive fuera de Europa)
  740.  __  Por correo, pago contra reembolso (m╨░s gastos de env╨▒o)
  741.  
  742. Elija formato de diskette:
  743.  __  diskette 5 1/4"
  744.  __  diskette 3 1/2"
  745.  
  746. Forma de pago:
  747.  __  Cheque en d╨▓lares U.S.A. o marcos alemanes adjunto
  748.  __  Dinero adjunto (d╨▓lares U.S.A. o marcos alemanes)
  749.  __  Pago contra reembolso
  750.  
  751. Versi╨▓n registrada de PLOT para OS/2 2.x ($20 U.S.)          ______
  752. Actualizaci╨▓n de cualquier versi╨▓n registrada ($5 U.S.)      ______
  753. Gastos de env╨▒o                                              ______
  754.  
  755. Total adjunto                                                ______
  756.  
  757. Enviar a:        StegSoft
  758.                  Durlacher Allee 38
  759.                  76131 Karlsruhe
  760.                  Alemania
  761.  
  762.                  Fax: +49 721 693242
  763.  
  764.                  *** ╨╜Muchas gracias por su pedido! ***
  765.  
  766.  
  767. ΓòÉΓòÉΓòÉ 21. Product information ΓòÉΓòÉΓòÉ
  768.  
  769. Refer to this menu item to know about the PLOT version you are using and the 
  770. people who wrote this application.